home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
swagd-f
/
dos.swg
/
0088_Warm-Cold Boot.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-02-28
|
309 b
|
20 lines
{ Boot system
If warm is true a warm boot is performed, else a cold boot }
Procedure Boot (Warm:Boolean);
Begin
Asm
sti
cmp Warm, 0
je @cold
mov AX, 0
jmp @boot
@cold:
mov AX, 1
@boot:
mov DS, AX
mov AX, 1234h
mov [0472h], AX
End;
Inline ($EA/$00/$00/$FF/$FF);
End;